home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 3-035 lotus / 1.ima / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-07-14  |  392b  |  19 lines

  1. @ECHO OFF
  2. IF NOT EXIST lotus.exe GOTO logon
  3. IF "%1"=="" GOTO nodrive
  4. IF NOT EXIST %1\*.* GOTO nodrive
  5. GOTO driveok
  6. :logon
  7. ECHO You must log onto the disk first e.g. A:
  8. GOTO finish
  9. :nodrive
  10. ECHO You must specify a valid hard disk to install onto e.g. INSTALL C:
  11. GOTO finish
  12. :driveok
  13. @ECHO ON
  14. MD %1\lotus
  15. COPY lotus.exe %1\lotus
  16. COPY lotus.dat %1\lotus
  17. @%1
  18. @CD \lotus
  19. :finish